home *** CD-ROM | disk | FTP | other *** search
/ VIPER Paradice / VIPER.ISO / pc / SETUP.EXE / SETUP.DXR / 00035_Go Next Button.ls < prev    next >
Encoding:
Text File  |  2002-06-30  |  564 b   |  20 lines

  1. on getBehaviorDescription me
  2.   return "GO NEXT BUTTON" & RETURN & RETURN & "Moves the playback head to the next marker when the user clicks on the sprite." & RETURN & RETURN & "PERMITTED MEMBER TYPES:" & RETURN & "Graphic members" & RETURN & RETURN & "PARAMETERS: None"
  3. end
  4.  
  5. on getBehaviorTooltip me
  6.   return "Use with graphic members. " & "Moves the playback head to the next marker on mouseUp."
  7. end
  8.  
  9. on mouseUp me
  10.   go(#next)
  11. end
  12.  
  13. on isOKToAttach me, aSpriteType, aSpriteNum
  14.   tisok = 0
  15.   if aSpriteType = #graphic then
  16.     tisok = 1
  17.   end if
  18.   return tisok
  19. end
  20.